zipkin
This is the core npm package for Zipkin. It contains the public API which is used by the various
plugins (instrumentations and transports).
We include TypeScript definition file which you can also use as documentation.
Developing
Please always make sure that TypeScript type definitions match source code modifications.
Usage
const zipkin = require('zipkin');
const CLSContext = require('zipkin-context-cls');
const ctxImpl = new CLSContext();
const xtxImpl = new zipkin.ExplicitContext();
const tracer = new zipkin.Tracer({
ctxImpl,
recorder: new zipkin.ConsoleRecorder(),
sampler: new zipkin.sampler.CountingSampler(0.01),
traceId128Bit: true,
localServiceName: 'my-service'
});
Local tracing
Sometimes you have activity that precedes a remote request that you want to
capture in a trace. tracer.local
can time an operation, placing a
corresponding span ID in scope so that any downstream commands end up in the
same trace.
Here's an example tracing a synchronous function:
const result = tracer.local('checkout', () => {
return someComputation();
});
Here's an example tracing a function that returns a promise:
const result = tracer.local('checkout', () => {
return createAPromise();
});